home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / util / blank / bserver_v14.lha / BServer_v1.4 / Sources.lha / Sources / server / makefile < prev    next >
Encoding:
Makefile  |  1995-03-23  |  1.1 KB  |  40 lines

  1.  
  2. OUT = //BServer
  3. OPT = DATA=NEAR PARMS=REGISTERS UCHAR CONSTLIB STREQ NMINC STRMERGE NOSTKCHK NOSTDIO OPTIMIZE OPTSIZE DBG=LINE
  4. BLO =  SC SD NOICONS STRIPDEBUG
  5.  
  6. OBJFILES = askfiles.o bserver.o builtin_blanker.o gadgets.o window.o commodity.o modeid.o startclients.o
  7.  
  8. BServer: $(OBJFILES) /include/server.h
  9.     Slink from LIB:c.o $(OBJFILES) to $(OUT) $(BLO) LIB LIB:sc.lib LIB:amiga.lib define
  10.  
  11. askfiles.o: askfiles.c BServer_strings.h
  12.         sc $(OPT) askfiles.c
  13.  
  14. bserver.o: bserver.c BServer_strings.h /include/server.h
  15.         sc $(OPT) bserver.c IGNORE=84
  16.  
  17. builtin_blanker.o: builtin_blanker.c
  18.     sc $(OPT) builtin_blanker.c
  19.  
  20. gadgets.o: gadgets.c BServer_strings.h /include/server.h
  21.     sc $(OPT)  gadgets.c
  22.  
  23. window.o: window.c /include/server.h
  24.     sc $(OPT) window.c
  25.  
  26. commodity.o: commodity.c BServer_strings.h /include/server.h
  27.     sc $(OPT) commodity.c
  28.  
  29. modeid.o: modeid.c /include/server.h
  30.     sc $(OPT) modeid.c
  31.  
  32. startclients.o: startclients.c /include/server.h
  33.     sc $(OPT) startclients.c
  34.  
  35. BServer_strings.h: Catalogs/BServer.cd
  36.     CatComp Catalogs/BServer.cd CFILE BServer_strings.h
  37.  
  38. BServer_strings.o: Catalogs/BServer.cd
  39.     CatComp Catalogs/BServer.cd OBJFILE BServer_strings.o
  40.